home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Celestin Apprentice 5
/
Apprentice-Release5.iso
/
Source Code
/
C
/
Applications
/
Python 1.3.3
/
stdwin
/
Tools
/
dirent.h
< prev
next >
Wrap
Text File
|
1995-12-21
|
210b
|
10 lines
/* A hack to compensate the absence of <dirent.h> on BSD systems.
Remove this file if it bothers you. */
#ifdef SYSV
#include "/usr/include/dirent.h"
#else
#include <sys/dir.h>
#define dirent direct
#endif